home *** CD-ROM | disk | FTP | other *** search
- Path: comsearch.com!tnasca
- From: Thuan Nguyen <thnguyen@comsearch.com>
- Newsgroups: comp.lang.c++
- Subject: HELP: I need RWTPtrSlist< myTemplate<T>>
- Date: 18 Jan 1996 22:42:40 GMT
- Organization: ComSearch, Inc
- Message-ID: <4dmid0$o2m@gateway.comsearch.com>
- NNTP-Posting-Host: arcturus.comsearch.com
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1N (X11; I; SunOS 4.1.4 sun4c)
- X-URL: news:comp.lang.c++
-
- I have a template class that will be used in a link list template. As a result.
- My declaration for link list end up:
-
- template <class listType>
- class myTemplate
- {
- }
-
- template <class listType>
- class store_list
- {
- RWTPtrSlist< myTemplate<listType>> _mylist; // link list
- }
-
- Compiler doesnt like this. Is there anyway I can get around this ??
-
- Thanks
-
-